X-Git-Url: https://git.r.bdr.sh/rbdr/super-polarity/blobdiff_plain/f8aec187ea7dc410a32996406109f290f3199ffa..2af83e98005a14c439b360a5b9ac636f594d9f0c:/Super%20Polarity/Ship.cs?ds=sidebyside diff --git a/Super Polarity/Ship.cs b/Super Polarity/Ship.cs deleted file mode 100644 index 5105882..0000000 --- a/Super Polarity/Ship.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using Microsoft.Xna.Framework; -using Microsoft.Xna.Framework.Graphics; - -namespace SuperPolarity -{ - class Ship : Actor - { - public enum Polarity : byte { Negative, Positive, Neutral }; - - protected uint HP; - protected Polarity CurrentPolarity; - - public void SwitchPolarity() - { - if (CurrentPolarity == Polarity.Positive) - { - CurrentPolarity = Polarity.Negative; - } - else - { - CurrentPolarity = Polarity.Positive; - } - } - - public void SetPolarity(Polarity newPolarity) - { - CurrentPolarity = newPolarity; - } - - public virtual void Shoot() - { - } - } -}